home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Hyper / Me-Mz / Mike's Externals.cpt / Mike's Externals / card_7018.txt < prev    next >
Text File  |  1990-02-22  |  1KB  |  32 lines

  1. -- card: 7018 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 2764
  5. -- name: 
  6.  
  7.  
  8. -- part contents for background part 17
  9. ----- text -----
  10. Xround
  11.  
  12. -- part contents for background part 18
  13. ----- text -----
  14. Mike Gleason Jr.
  15.  
  16. -- part contents for background part 19
  17. ----- text -----
  18. XFCN
  19.  
  20. -- part contents for background part 20
  21. ----- text -----
  22. xround(number,decimalplaces [, justify n spaces, spChar])
  23.  
  24. -- part contents for background part 21
  25. ----- text -----
  26. A function to round real numbers.  Unlike, hypercard's built it function, you do not have to round it up to an integer; instead you can just round it to however many places after the decimal point you want.  Like the Spaces XFCN, the option is built in to add spaces in front of the number to align columns;  Also like Spaces, you can specify the character to use as the space character.
  27.  
  28. -- part contents for background part 23
  29. ----- text -----
  30. put xround(99.878,2,10,".") into msg    -->.....99.88
  31. put xround(-341.9,0) into msg           -->-342
  32.